
        /*
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 2rem;
            font-family: sans-serif;
            background-color: #f4f4f4;
        }
            */

        .image-container {
            position: relative;
            max-width: 600px;
            margin: auto;
            overflow: hidden;
            border-radius: 15px;/*
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);/*ombrage */
        }

        .image-container img {
            width: 100%;
            height: auto;/*decale la légende
            display: block;*/
            border-radius: 15px;
            transition: transform 0.4s ease;
            border: 0.5px solid rgb(6, 1, 1);
            box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
        }

        .image-container:hover img {
            transform: scale(1.03);
        }

        .caption {
            border-radius: 15px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 0.2rem;/*            padding: 1rem;*/
            text-align: center;
            opacity: 0;
            transform: translateY(100%);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .image-container:hover .caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive tweaks (facultatif, car img est déjà responsive) */
        @media (max-width: 768px) {
            .caption {
                font-size: 0.9rem;
                padding: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .caption {
                font-size: 0.8rem;
                padding: 0.6rem;
            }
        }

        /*
        
    <a href="Photos/Aikido/1200/Aikido-Bourg-01-10.JPG" target="_blank" class="image-container">
        <img src="Photos/Aikido/250/Aikido-Bourg-01-10.webp" loading="lazy" alt="Description de l'image">
        <div class="caption">Ceci est une légende d'image apparaissant au survol</div>
    </a>
        */